home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1843 / 1843.xpi / content / firebug / customizeShortcuts.xul < prev    next >
Extensible Markup Language  |  2010-01-15  |  1KB  |  32 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css"?>
  3. <?xml-stylesheet href="chrome://firebug/skin/customizeShortcuts.css" ?>
  4. <!DOCTYPE window [
  5. <!ENTITY % firebugDTD SYSTEM "chrome://firebug/locale/firebug.dtd">
  6. %firebugDTD;
  7. ]>
  8. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.         class="windowDialog"
  10.         id="firebug-customize-keyboard"
  11.         width="400" height="500"
  12.         buttons="accept,cancel"
  13.         onload="init();"
  14.         ondialogaccept="return saveChanges();"
  15.         ondialogcancel="return true;"
  16.         persist="screenX screenY width height">
  17.     <script type="application/x-javascript" src="chrome://firebug/content/customizeShortcuts.js" />
  18.     <stringbundleset>
  19.         <stringbundle id="platformKeys" src="chrome://global-platform/locale/platformKeys.properties"/>
  20.         <stringbundle id="localeKeys" src="chrome://global/locale/keys.properties"/>
  21.     </stringbundleset>
  22.     <!-- Dialog UI structure (list of registered shortcuts) -->
  23.     <grid flex="1" id="shortcutGrid">
  24.         <columns>
  25.            <column id="labelColumn"/>
  26.             <column flex="1"/>
  27.             <column/>
  28.         </columns>
  29.         <rows id="shortcutGridRows"></rows>
  30.     </grid>
  31. </dialog>
  32.